DataSource for Entity Framework in WPF
C1.LiveLinq.Collections Namespace / IndexedCollection<T> Class / SetItem Method
The zero-based ordinal of the element to replace.
The new value for the element at the specified ordinal. The value can be null for reference types.

In This Topic
    SetItem Method (IndexedCollection<T>)
    In This Topic
    Replaces the element at the specified ordinal position.
    Syntax
    'Declaration
     
    Protected Overrides Sub SetItem( _
       ByVal ordinal As Integer, _
       ByVal newItem As T _
    ) 
    protected override void SetItem( 
       int ordinal,
       T newItem
    )

    Parameters

    ordinal
    The zero-based ordinal of the element to replace.
    newItem
    The new value for the element at the specified ordinal. The value can be null for reference types.
    See Also